home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Sources / genoutput.c < prev    next >
Text File  |  1990-03-15  |  22KB  |  796 lines

  1. /* Generate code from to output assembler insns as recognized from rtl.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.    Copyright (C) 1989, 1990 Apple Computer, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. /* This program reads the machine description for the compiler target machine
  23.    and produces a file containing three things:
  24.  
  25.    1, An array of strings `insn_template' which is indexed by insn code number
  26.    and contains the template for output of that insn,
  27.  
  28.    2. An array of ints `insn_n_operands' which is indexed by insn code number
  29.    and contains the number of distinct operands in the pattern for that insn,
  30.  
  31.    3. An array of ints `insn_n_dups' which is indexed by insn code number
  32.    and contains the number of match_dup's that appear in the insn's pattern.
  33.    This says how many elements of `recog_dup_loc' are significant
  34.    after an insn has been recognized.
  35.  
  36.    4. An array of arrays of operand constraint strings,
  37.    `insn_operand_constraint',
  38.    indexed first by insn code number and second by operand number,
  39.    containing the constraint for that operand.
  40.  
  41.    This array is generated only if register constraints appear in 
  42.    match_operand rtx's.
  43.  
  44.    5. An array of arrays of chars which indicate which operands of
  45.    which insn patterns appear within ADDRESS rtx's.  This array is
  46.    called `insn_operand_address_p' and is generated only if there
  47.    are *no* register constraints in the match_operand rtx's.
  48.  
  49.    6. An array of arrays of machine modes, `insn_operand_mode',
  50.    indexed first by insn code number and second by operand number,
  51.    containing the machine mode that that operand is supposed to have.
  52.    Also `insn_operand_strict_low', which is nonzero for operands
  53.    contained in a STRICT_LOW_PART.
  54.  
  55.    7. An array of arrays of int-valued functions, `insn_operand_predicate',
  56.    indexed first by insn code number and second by operand number,
  57.    containing the match_operand predicate for this operand.
  58.  
  59.    8. An array of functions `insn_gen_function' which, indexed
  60.    by insn code number, gives the function to generate a body
  61.    for that patter, given operands as arguments.
  62.  
  63.    9. A function `output_insn_hairy' which is called with two arguments
  64.    (an insn code number and a vector of operand value rtx's)
  65.    and returns a template to use for output of that insn.
  66.    This is used only in the cases where the template is not constant.
  67.    These cases are specified by a * at the beginning of the template string
  68.    in the machine description.  They are identified for the sake of
  69.    other parts of the compiler by a zero element in `insn_template'.
  70.   
  71.    10. An array of structures, `insn_machine_info', that gives machine-specific
  72.    information about the insn.
  73.  
  74.    11. An array of ints, `insn_n_alternatives', that gives the number
  75.    of alternatives in the constraints of each pattern.
  76.  
  77. The code number of an insn is simply its position in the machine description;
  78. code numbers are assigned sequentially to entries in the description,
  79. starting with code number 0.
  80.  
  81. Thus, the following entry in the machine description
  82.  
  83.     (define_insn "clrdf"
  84.       [(set (match_operand:DF 0 "general_operand" "")
  85.         (const_int 0))]
  86.       ""
  87.       "clrd %0")
  88.  
  89. assuming it is the 25th entry present, would cause
  90. insn_template[24] to be "clrd %0", and insn_n_operands[24] to be 1.
  91. It would not make an case in output_insn_hairy because the template
  92. given in the entry is a constant (it does not start with `*').  */
  93.  
  94. #include <stdio.h>
  95. #include "config.h"
  96. #include "rtl.h"
  97. #include "obstack.h"
  98.  
  99. /* No instruction can have more operands than this.
  100.    Sorry for this arbitrary limit, but what machine will
  101.    have an instruction with this many operands?  */
  102.  
  103. #define MAX_MAX_OPERANDS 40
  104.  
  105. struct obstack obstack;
  106. struct obstack *rtl_obstack = &obstack;
  107.  
  108. #define obstack_chunk_alloc xmalloc
  109. #define obstack_chunk_free free
  110. extern int xmalloc ();
  111. extern void free ();
  112.  
  113. void fatal ();
  114. void fancy_abort ();
  115. void error ();
  116. void mybcopy ();
  117. void mybzero ();
  118.  
  119. /* insns in the machine description are assigned sequential code numbers
  120.    that are used by insn-recog.c (produced by genrecog) to communicate
  121.    to insn-output.c (produced by this program).  */
  122.  
  123. int next_code_number;
  124.  
  125. /* Record in this chain all information that we will output,
  126.    associated with the code number of the insn.  */
  127.  
  128. struct data
  129. {
  130.   int code_number;
  131.   char *name;
  132.   char *template;        /* string such as "movl %1,%0" */
  133.   int n_operands;        /* Number of operands this insn recognizes */
  134.   int n_dups;            /* Number times match_dup appears in pattern */
  135.   int n_alternatives;        /* Number of alternatives in each constraint */
  136.   struct data *next;
  137.   char *constraints[MAX_MAX_OPERANDS];
  138.   /* Number of alternatives in constraints of operand N.  */
  139.   int op_n_alternatives[MAX_MAX_OPERANDS];
  140.   char *predicates[MAX_MAX_OPERANDS];
  141.   char address_p[MAX_MAX_OPERANDS];
  142.   enum machine_mode modes[MAX_MAX_OPERANDS];
  143.   char strict_low[MAX_MAX_OPERANDS];
  144.   char outfun;            /* Nonzero means this has an output function */
  145.   char *machine_info;        /* machine-specific info string. */
  146. };
  147.  
  148. /* This variable points to the first link in the chain.  */
  149.  
  150. struct data *insn_data;
  151.  
  152. /* Pointer to the last link in the chain, so new elements
  153.    can be added at the end.  */
  154.  
  155. struct data *end_of_insn_data;
  156.  
  157. /* Nonzero if any match_operand has a constraint string;
  158.    implies that REGISTER_CONSTRAINTS will be defined
  159.    for this machine description.  */
  160.  
  161. int have_constraints;
  162.  
  163. void
  164. output_prologue ()
  165. {
  166.  
  167.   printf ("/* Generated automatically by the program `genoutput'\n\
  168. from the machine description file `md'.  */\n\n");
  169.  
  170.   printf ("#include \"config.h\"\n");
  171.   printf ("#include \"rtl.h\"\n");
  172.   printf ("#include \"regs.h\"\n");
  173.   printf ("#include \"hard-reg-set.h\"\n");
  174.   printf ("#include \"real.h\"\n");
  175.   printf ("#include \"conditions.h\"\n");
  176.   printf ("#include \"insn-flags.h\"\n");
  177.   printf ("#include \"insn-config.h\"\n\n");
  178.  
  179.   printf ("#ifndef __STDC__\n");
  180.   printf ("#define const\n");
  181.   printf ("#endif\n\n");
  182.  
  183.   printf ("#include \"output.h\"\n");
  184. #ifdef MPW
  185.   /* Insn-output has gotten pretty big, what with SANE support and all. */
  186.   printf ("#pragma segment aux-output\n");
  187. #endif /* MPW */
  188.   printf ("#include \"aux-output.c\"\n\n");
  189. #ifdef MPW
  190.   /* Switch back to the original segment. */
  191.   printf ("#pragma segment insn-output\n");
  192. #endif /* MPW */
  193.  
  194.   /* Make sure there is at least a dummy definition of INSN_MACHINE_INFO.  */
  195.   printf ("#ifndef INSN_MACHINE_INFO\n");
  196.   printf ("#define INSN_MACHINE_INFO struct dummy1 {int i;}\n");
  197.   printf ("#endif\n\n");
  198. }
  199.  
  200. void
  201. output_epilogue ()
  202. {
  203.   register struct data *d;
  204.  
  205.   printf ("\nchar * const insn_template[] =\n  {\n");
  206.   for (d = insn_data; d; d = d->next)
  207.     {
  208.       if (d->template)
  209.     printf ("    \"%s\",\n", d->template);
  210.       else
  211.     printf ("    0,\n");
  212.     }
  213.   printf ("  };\n");
  214.  
  215.   printf ("\nchar *(*const insn_outfun[])() =\n  {\n");
  216.   for (d = insn_data; d; d = d->next)
  217.     {
  218.       if (d->outfun)
  219.     printf ("    output_%d,\n", d->code_number);
  220.       else
  221.     printf ("    0,\n");
  222.     }
  223.   printf ("  };\n");
  224.  
  225.   printf ("\nrtx (*const insn_gen_function[]) () =\n  {\n");
  226.   for (d = insn_data; d; d = d->next)
  227.     {
  228.       if (d->name)
  229.     printf ("    gen_%s,\n", d->name);
  230.       else
  231.     printf ("    0,\n");
  232.     }
  233.   printf ("  };\n");
  234.  
  235.   printf ("\nconst int insn_n_operands[] =\n  {\n");
  236.   for (d = insn_data; d; d = d->next)
  237.     {
  238.       printf ("    %d,\n", d->n_operands);
  239.     }
  240.   printf ("  };\n");
  241.  
  242.   printf ("\nconst int insn_n_dups[] =\n  {\n");
  243.   for (d = insn_data; d; d = d->next)
  244.     {
  245.       printf ("    %d,\n", d->n_dups);
  246.     }
  247.   printf ("  };\n");
  248.  
  249.   if (have_constraints)
  250.     {
  251.       printf ("\nchar *const insn_operand_constraint[][MAX_RECOG_OPERANDS] =\n  {\n");
  252.       for (d = insn_data; d; d = d->next)
  253.     {
  254.       register int i, n = 0, start;
  255.       printf ("    {");
  256.       /* Make sure all the operands have the same number of
  257.          alternatives in their constraints.
  258.          Let N be that number.  */
  259.       for (start = 0; start < d->n_operands; start++)
  260.         if (d->op_n_alternatives[start] > 0)
  261.           {
  262.         if (n == 0)
  263.           n = d->op_n_alternatives[start];
  264.         else if (n != d->op_n_alternatives[start])
  265.           error ("wrong number of alternatives in operand %d of insn number %d",
  266.              start, d->code_number);
  267.           }
  268.       /* Record the insn's overall number of alternatives.  */
  269.       d->n_alternatives = n;
  270.  
  271.       for (i = 0; i < d->n_operands; i++)
  272.         {
  273.           if (d->constraints[i] == 0)
  274.         printf (" \"\",");
  275.           else
  276.         printf (" \"%s\",", d->constraints[i]);
  277.         }
  278.       if (d->n_operands == 0)
  279.         printf (" 0");
  280.       printf (" },\n");
  281.     }
  282.       printf ("  };\n");
  283.     }
  284.   else
  285.     {
  286.       printf ("\nconst char insn_operand_address_p[][MAX_RECOG_OPERANDS] =\n  {\n");
  287.       for (d = insn_data; d; d = d->next)
  288.     {
  289.       register int i;
  290.       printf ("    {");
  291.       for (i = 0; i < d->n_operands; i++)
  292.         printf (" %d,", d->address_p[i]);
  293.       if (d->n_operands == 0)
  294.         printf (" 0");
  295.       printf (" },\n");
  296.     }
  297.       printf ("  };\n");
  298.     }
  299.  
  300.   printf ("\nconst enum machine_mode insn_operand_mode[][MAX_RECOG_OPERANDS] =\n  {\n");
  301.   for (d = insn_data; d; d = d->next)
  302.     {
  303.       register int i;
  304.       printf ("    {");
  305.       for (i = 0; i < d->n_operands; i++)
  306.     printf (" %smode,", GET_MODE_NAME (d->modes[i]));
  307.       if (d->n_operands == 0)
  308.     printf (" VOIDmode");
  309.       printf (" },\n");
  310.     }
  311.   printf ("  };\n");
  312.  
  313.   printf ("\nconst char insn_operand_strict_low[][MAX_RECOG_OPERANDS] =\n  {\n");
  314.   for (d = insn_data; d; d = d->next)
  315.     {
  316.       register int i;
  317.       printf ("    {");
  318.       for (i = 0; i < d->n_operands; i++)
  319.     printf (" %d,", d->strict_low[i]);
  320.       if (d->n_operands == 0)
  321.     printf (" 0");
  322.       printf (" },\n");
  323.     }
  324.   printf ("  };\n");
  325.  
  326.   printf ("\nint (*const insn_operand_predicate[][MAX_RECOG_OPERANDS])() =\n  {\n");
  327.   for (d = insn_data; d; d = d->next)
  328.     {
  329.       register int i;
  330.       printf ("    {");
  331.       for (i = 0; i < d->n_operands; i++)
  332.     printf (" %s,", ((d->predicates[i] && d->predicates[i][0])
  333.              ? d->predicates[i] : "0"));
  334.       if (d->n_operands == 0)
  335.     printf (" 0");
  336.       printf (" },\n");
  337.     }
  338.   printf ("  };\n");
  339.  
  340.   printf ("\n#ifndef DEFAULT_MACHINE_INFO\n#define DEFAULT_MACHINE_INFO 0\n");
  341.   printf ("#endif\n\nconst INSN_MACHINE_INFO insn_machine_info[] =\n  {\n");
  342.   for (d = insn_data; d; d = d->next)
  343.     {
  344.       if (d->machine_info)
  345.     printf ("    {%s},\n", d->machine_info);
  346.       else
  347.     printf("     { DEFAULT_MACHINE_INFO },\n");
  348.     }
  349.   printf("  };\n");
  350.  
  351.   printf ("\nconst int insn_n_alternatives[] =\n  {\n");
  352.   for (d = insn_data; d; d = d->next)
  353.     {
  354.       if (d->n_alternatives)
  355.     printf ("    %d,\n", d->n_alternatives);
  356.       else
  357.     printf("     0,\n");
  358.     }
  359.   printf("  };\n");
  360. }
  361.  
  362. /* scan_operands (X) stores in max_opno the largest operand
  363.    number present in X, if that is larger than the previous
  364.    value of max_opno.  It stores all the constraints in `constraints'
  365.    and all the machine modes in `modes'.
  366.  
  367.    THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
  368.    THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART.  */
  369.  
  370. int max_opno;
  371. int num_dups;
  372. char *constraints[MAX_MAX_OPERANDS];
  373. int op_n_alternatives[MAX_MAX_OPERANDS];
  374. char *predicates[MAX_MAX_OPERANDS];
  375. char address_p[MAX_MAX_OPERANDS];
  376. enum machine_mode modes[MAX_MAX_OPERANDS];
  377. char strict_low[MAX_MAX_OPERANDS];
  378.  
  379. void
  380. scan_operands (part, this_address_p, this_strict_low)
  381.      rtx part;
  382.      int this_address_p;
  383.      int this_strict_low;
  384. {
  385.   register int i, j;
  386.   register RTX_CODE code;
  387.   register char *format_ptr;
  388.  
  389.   if (part == 0)
  390.     return;
  391.  
  392.   code = GET_CODE (part);
  393.  
  394.   if (code == MATCH_OPERAND)
  395.     {
  396.       int opno = XINT (part, 0);
  397.       if (opno > max_opno)
  398.     max_opno = opno;
  399.       if (max_opno >= MAX_MAX_OPERANDS)
  400.     error ("Too many operands (%d) in one instruction pattern.\n",
  401.            max_opno + 1);
  402.       modes[opno] = GET_MODE (part);
  403.       strict_low[opno] = this_strict_low;
  404.       predicates[opno] = XSTR (part, 1);
  405.       constraints[opno] = XSTR (part, 2);
  406.       if (XSTR (part, 2) != 0 && *XSTR (part, 2) != 0)
  407.     {
  408.       op_n_alternatives[opno] = n_occurrences (',', XSTR (part, 2)) + 1;
  409.       have_constraints = 1;
  410.     }
  411.       address_p[opno] = this_address_p;
  412.       return;
  413.     }
  414.  
  415.   if (code == MATCH_OPERATOR)
  416.     {
  417.       int opno = XINT (part, 0);
  418.       if (opno > max_opno)
  419.     max_opno = opno;
  420.       if (max_opno >= MAX_MAX_OPERANDS)
  421.     error ("Too many operands (%d) in one instruction pattern.\n",
  422.            max_opno + 1);
  423.       modes[opno] = GET_MODE (part);
  424.       strict_low[opno] = 0;
  425.       predicates[opno] = XSTR (part, 1);
  426.       constraints[opno] = 0;
  427.       address_p[opno] = 0;
  428.       for (i = 0; i < XVECLEN (part, 2); i++)
  429.     scan_operands (XVECEXP (part, 2, i), 0, 0);
  430.       return;
  431.     }
  432.  
  433.   if (code == MATCH_DUP)
  434.     {
  435.       ++num_dups;
  436.       return;
  437.     }
  438.  
  439.   if (code == ADDRESS)
  440.     {
  441.       scan_operands (XEXP (part, 0), 1, 0);
  442.       return;
  443.     }
  444.  
  445.   if (code == STRICT_LOW_PART)
  446.     {
  447.       scan_operands (XEXP (part, 0), 0, 1);
  448.       return;
  449.     }
  450.  
  451.   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
  452.  
  453.   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
  454.     switch (*format_ptr++)
  455.       {
  456.       case 'e':
  457.     scan_operands (XEXP (part, i), 0, 0);
  458.     break;
  459.       case 'E':
  460.     if (XVEC (part, i) != NULL)
  461.       for (j = 0; j < XVECLEN (part, i); j++)
  462.         scan_operands (XVECEXP (part, i, j), 0, 0);
  463.     break;
  464.       }
  465. }
  466.  
  467. /* Look at a define_insn just read.  Assign its code number.
  468.    Record on insn_data the template and the number of arguments.
  469.    If the insn has a hairy output action, output a function for now.  */
  470.  
  471. void
  472. gen_insn (insn)
  473.      rtx insn;
  474. {
  475.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  476.   register int i;
  477.  
  478.   d->code_number = next_code_number++;
  479.   if (XSTR (insn, 0)[0])
  480.     d->name = XSTR (insn, 0);
  481.   else
  482.     d->name = 0;
  483.  
  484.   /* Build up the list in the same order as the insns are seen
  485.      in the machine description.  */
  486.   d->next = 0;
  487.   if (end_of_insn_data)
  488.     end_of_insn_data->next = d;
  489.   else
  490.     insn_data = d;
  491.  
  492.   end_of_insn_data = d;
  493.  
  494.   max_opno = -1;
  495.   num_dups = 0;
  496.  
  497.   mybzero (constraints, sizeof constraints);
  498.   mybzero (op_n_alternatives, sizeof op_n_alternatives);
  499.   mybzero (predicates, sizeof predicates);
  500.   mybzero (address_p, sizeof address_p);
  501.   mybzero (modes, sizeof modes);
  502.   mybzero (strict_low, sizeof strict_low);
  503.   for (i = 0; i < XVECLEN (insn, 1); i++)
  504.     scan_operands (XVECEXP (insn, 1, i), 0, 0);
  505.   d->n_operands = max_opno + 1;
  506.   d->n_dups = num_dups;
  507.   mybcopy (constraints, d->constraints, sizeof constraints);
  508.   mybcopy (op_n_alternatives, d->op_n_alternatives, sizeof op_n_alternatives);
  509.   mybcopy (predicates, d->predicates, sizeof predicates);
  510.   mybcopy (address_p, d->address_p, sizeof address_p);
  511.   mybcopy (modes, d->modes, sizeof modes);
  512.   mybcopy (strict_low, d->strict_low, sizeof strict_low);
  513.   d->machine_info = XSTR (insn, 4);
  514.  
  515.   /* We need to consider only the instructions whose assembler code template
  516.      starts with a *.  These are the ones where the template is really
  517.      C code to run to decide on a template to use.
  518.      So for all others just return now.  */
  519.  
  520.   if (XSTR (insn, 3)[0] != '*')
  521.     {
  522.       d->template = XSTR (insn, 3);
  523.       d->outfun = 0;
  524.       return;
  525.     }
  526.  
  527.   d->template = 0;
  528.   d->outfun = 1;
  529.  
  530.   printf ("\nstatic char *\n");
  531.   printf ("output_%d (operands, insn)\n", d->code_number);
  532.   printf ("     rtx *operands;\n");
  533.   printf ("     rtx insn;\n");
  534.   printf ("{\n");
  535.   /* The following is done in a funny way to get around problems in
  536.      VAX-11 "C" on VMS.  It is the equivalent of:
  537.         printf ("%s\n", &(XSTR (insn, 3)[1])); */
  538.   {
  539.     register char *cp = &(XSTR (insn, 3)[1]);
  540.     while (*cp) putchar (*cp++);
  541.     putchar ('\n');
  542.   }
  543.   printf ("}\n");
  544. }
  545.  
  546. /* Look at a define_peephole just read.  Assign its code number.
  547.    Record on insn_data the template and the number of arguments.
  548.    If the insn has a hairy output action, output it now.  */
  549.  
  550. void
  551. gen_peephole (peep)
  552.      rtx peep;
  553. {
  554.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  555.   register int i;
  556.  
  557.   d->code_number = next_code_number++;
  558.   d->name = 0;
  559.  
  560.   /* Build up the list in the same order as the insns are seen
  561.      in the machine description.  */
  562.   d->next = 0;
  563.   if (end_of_insn_data)
  564.     end_of_insn_data->next = d;
  565.   else
  566.     insn_data = d;
  567.  
  568.   end_of_insn_data = d;
  569.  
  570.   max_opno = -1;
  571.   mybzero (constraints, sizeof constraints);
  572.   mybzero (op_n_alternatives, sizeof op_n_alternatives);
  573.  
  574.   /* Get the number of operands by scanning all the
  575.      patterns of the peephole optimizer.
  576.      But ignore all the rest of the information thus obtained.  */
  577.   for (i = 0; i < XVECLEN (peep, 0); i++)
  578.     scan_operands (XVECEXP (peep, 0, i), 0, 0);
  579.  
  580.   d->n_operands = max_opno + 1;
  581.   d->n_dups = 0;
  582.   mybcopy (constraints, d->constraints, sizeof constraints);
  583.   mybcopy (op_n_alternatives, d->op_n_alternatives, sizeof op_n_alternatives);
  584.   mybzero (d->predicates, sizeof predicates);
  585.   mybzero (d->address_p, sizeof address_p);
  586.   mybzero (d->modes, sizeof modes);
  587.   mybzero (d->strict_low, sizeof strict_low);
  588.   d->machine_info = XSTR (peep, 3);
  589.  
  590.   /* We need to consider only the instructions whose assembler code template
  591.      starts with a *.  These are the ones where the template is really
  592.      C code to run to decide on a template to use.
  593.      So for all others just return now.  */
  594.  
  595.   if (XSTR (peep, 2)[0] != '*')
  596.     {
  597.       d->template = XSTR (peep, 2);
  598.       d->outfun = 0;
  599.       return;
  600.     }
  601.  
  602.   d->template = 0;
  603.   d->outfun = 1;
  604.  
  605.   printf ("\nstatic char *\n");
  606.   printf ("output_%d (operands, insn)\n", d->code_number);
  607.   printf ("     rtx *operands;\n");
  608.   printf ("     rtx insn;\n");
  609.   printf ("{\n");
  610.   printf ("%s\n", &(XSTR (peep, 2)[1]));
  611.   printf ("}\n");
  612. }
  613.  
  614. /* Process a define_expand just read.  Assign its code number,
  615.    only for the purposes of `insn_gen_function'.  */
  616.  
  617. void
  618. gen_expand (insn)
  619.      rtx insn;
  620. {
  621.   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
  622.   register int i;
  623.  
  624.   d->code_number = next_code_number++;
  625.   if (XSTR (insn, 0)[0])
  626.     d->name = XSTR (insn, 0);
  627.   else
  628.     d->name = 0;
  629.  
  630.   /* Build up the list in the same order as the insns are seen
  631.      in the machine description.  */
  632.   d->next = 0;
  633.   if (end_of_insn_data)
  634.     end_of_insn_data->next = d;
  635.   else
  636.     insn_data = d;
  637.  
  638.   end_of_insn_data = d;
  639.  
  640.   max_opno = -1;
  641.   num_dups = 0;
  642.  
  643.   /* Scan the operands to get the specified predicates and modes,
  644.      since expand_binop needs to know them.  */
  645.  
  646.   mybzero (predicates, sizeof predicates);
  647.   mybzero (modes, sizeof modes);
  648.   if (XVEC (insn, 1))
  649.     for (i = 0; i < XVECLEN (insn, 1); i++)
  650.       scan_operands (XVECEXP (insn, 1, i), 0, 0);
  651.   d->n_operands = max_opno + 1;
  652.   mybcopy (predicates, d->predicates, sizeof predicates);
  653.   mybcopy (modes, d->modes, sizeof modes);
  654.  
  655.   mybzero (d->constraints, sizeof constraints);
  656.   mybzero (d->op_n_alternatives, sizeof op_n_alternatives);
  657.   mybzero (d->address_p, sizeof address_p);
  658.   mybzero (d->strict_low, sizeof strict_low);
  659.  
  660.   d->n_dups = 0;
  661.   d->template = 0;
  662.   d->outfun = 0;
  663.   d->machine_info = 0;
  664. }
  665.  
  666. int
  667. xmalloc (size)
  668. {
  669.   register int val = malloc (size);
  670.  
  671.   if (val == 0)
  672.     fatal ("virtual memory exhausted");
  673.   return val;
  674. }
  675.  
  676. int
  677. xrealloc (ptr, size)
  678.      char *ptr;
  679.      int size;
  680. {
  681.   int result = realloc (ptr, size);
  682.   if (!result)
  683.     fatal ("virtual memory exhausted");
  684.   return result;
  685. }
  686.  
  687. void
  688. mybzero (b, length)
  689.      register char *b;
  690.      register int length;
  691. {
  692.   while (length-- > 0)
  693.     *b++ = 0;
  694. }
  695.  
  696. void
  697. mybcopy (b1, b2, length)
  698.      register char *b1;
  699.      register char *b2;
  700.      register int length;
  701. {
  702.   while (length-- > 0)
  703.     *b2++ = *b1++;
  704. }
  705.  
  706. void
  707. fatal (s, a1, a2)
  708.      char *s;
  709. {
  710.   fprintf (stderr, "genoutput: ");
  711.   fprintf (stderr, s, a1, a2);
  712.   fprintf (stderr, "\n");
  713.   exit (FATAL_EXIT_CODE);
  714. }
  715.  
  716. /* More 'friendly' abort that prints the line and file.
  717.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  718.  
  719. void
  720. fancy_abort ()
  721. {
  722.   fatal ("Internal gcc abort.");
  723. }
  724.  
  725. void
  726. error (s, a1, a2)
  727.      char *s;
  728. {
  729.   fprintf (stderr, "genoutput: ");
  730.   fprintf (stderr, s, a1, a2);
  731.   fprintf (stderr, "\n");
  732. }
  733.  
  734. int
  735. main (argc, argv)
  736.      int argc;
  737.      char **argv;
  738. {
  739.   rtx desc;
  740.   FILE *infile;
  741.   extern rtx read_rtx ();
  742.   register int c;
  743.  
  744.   obstack_init (rtl_obstack);
  745.  
  746.   if (argc <= 1)
  747.     fatal ("No input file name.");
  748.  
  749.   infile = fopen (argv[1], "r");
  750.   if (infile == 0)
  751.     {
  752.       perror (argv[1]);
  753.       exit (FATAL_EXIT_CODE);
  754.     }
  755.  
  756.   init_rtl ();
  757.  
  758.   output_prologue ();
  759.   next_code_number = 0;
  760.   have_constraints = 0;
  761.  
  762.   /* Read the machine description.  */
  763.  
  764.   while (1)
  765.     {
  766.       c = read_skip_spaces (infile);
  767.       if (c == EOF)
  768.     break;
  769.       ungetc (c, infile);
  770.  
  771.       desc = read_rtx (infile);
  772.       if (GET_CODE (desc) == DEFINE_INSN)
  773.     gen_insn (desc);
  774.       if (GET_CODE (desc) == DEFINE_PEEPHOLE)
  775.     gen_peephole (desc);
  776.       if (GET_CODE (desc) == DEFINE_EXPAND)
  777.     gen_expand (desc);
  778.     }
  779.  
  780.   output_epilogue ();
  781.  
  782.   fflush (stdout);
  783.   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
  784. }
  785.  
  786. int
  787. n_occurrences (c, s)
  788.      char c;
  789.      char *s;
  790. {
  791.   int n = 0;
  792.   while (*s)
  793.     n += (*s++ == c);
  794.   return n;
  795. }
  796.